From: Juergen Gross Date: Thu, 9 Feb 2017 08:40:31 +0000 (+0100) Subject: libxl: make one function static X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2808 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=3884d7900a1528eebeaf276aa7614d9026de5811;p=xen.git libxl: make one function static libxl__device_frontend_path() is used in libxl_device.c only. Make it static. Signed-off-by: Juergen Gross Reviewed-by: Wei Liu Acked-by: Ian Jackson --- diff --git a/tools/libxl/libxl_device.c b/tools/libxl/libxl_device.c index c72a2b8a56..5e966762c6 100644 --- a/tools/libxl/libxl_device.c +++ b/tools/libxl/libxl_device.c @@ -18,7 +18,7 @@ #include "libxl_internal.h" -char *libxl__device_frontend_path(libxl__gc *gc, libxl__device *device) +static char *libxl__device_frontend_path(libxl__gc *gc, libxl__device *device) { char *dom_path = libxl__xs_get_dompath(gc, device->domid); diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index ee279d2c5b..5bbede532e 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -1206,7 +1206,6 @@ _hidden int libxl__device_exists(libxl__gc *gc, xs_transaction_t t, _hidden int libxl__device_generic_add(libxl__gc *gc, xs_transaction_t t, libxl__device *device, char **bents, char **fents, char **ro_fents); _hidden char *libxl__device_backend_path(libxl__gc *gc, libxl__device *device); -_hidden char *libxl__device_frontend_path(libxl__gc *gc, libxl__device *device); _hidden char *libxl__device_libxl_path(libxl__gc *gc, libxl__device *device); _hidden int libxl__parse_backend_path(libxl__gc *gc, const char *path, libxl__device *dev);